home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 September
/
CHIP NET Rehberi Eylül 1998.iso
/
Browser
/
icomm120
/
SAMPLE.CMD
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-11-01
|
596b
|
25 lines
# This is a sample login script file for I-Comm.
# There are only three commands supported:
# wait ---- wait for x seconds
# input ---- host prompt
# output ---- command sent by I-Comm
#
# To use this script file, you will need to EDIT
# the phone book entry, specify this file name
# and FULL path in the "script file" field.
# Script start
# wait for a second
wait 1
# if we see "login:" prompt, issue user name "icomm"
input login:
output icomm
# if we see "password:" prompt, issue password
input password:
output xxxxxxxxx
# Script end